/* Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}
.Checkout{
    font-size: 30px;
    font-weight: 600;
}

.container {
    max-width: 1900px;
    margin: 40px auto;
    padding: 20px;
}

/* Form Styles */
form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select {
    width: 100%;
    height: 40px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
select:focus {
    border-color: #aaa;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.flex-column {
    width: 48%;
}

.flex-column:last-child {
    margin-right: 0;
}

/* Button Styles */
.btn-primary {
    background-color: #33b750;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .flex-column {
        width: 100%;
        margin-right: 0;
    }
}
